python count the frequency of words in a list

43

python count the frequency of words in a list -

from collections import Counter
list1=['apple','egg','apple','banana','egg','apple']
counts = Counter(list1)

print(counts)
# Counter({'apple': 3, 'egg': 2, 'banana': 1})

Comments

Submit
0 Comments